Bug 567569 – Typo in GtkFileChooser example in GTK+ documentation
authorChristian Dywan <christian@imendio.com>
Tue, 13 Jan 2009 09:32:17 +0000 (09:32 +0000)
committerChristian Dywan <cdywan@src.gnome.org>
Tue, 13 Jan 2009 09:32:17 +0000 (09:32 +0000)
2009-01-13  Christian Dywan  <christian@imendio.com>

Bug 567569 – Typo in GtkFileChooser example in GTK+ documentation

* gtk/tmpl/gtkfilechooser.sgml: s/gobject_unref/g_object_unref.
        Patch by Priyank Gosalia.

svn path=/trunk/; revision=22105

docs/reference/ChangeLog
docs/reference/gtk/tmpl/gtkfilechooser.sgml

index 0a4b01ddb719e6bae430ff33babfd94b24c61728..a9e50264d03f4da1e8b1449a1c2473556417e22e 100644 (file)
@@ -1,3 +1,10 @@
+2009-01-13  Christian Dywan  <christian@imendio.com>
+
+       Bug 567569 – Typo in GtkFileChooser example in GTK+ documentation
+
+       * gtk/tmpl/gtkfilechooser.sgml: s/gobject_unref/g_object_unref.
+        Patch by Priyank Gosalia.
+
 2009-01-05  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/tmpl/gtkstock.sgml: Add GTK_STOCK_CAPS_LOCK_WARNING
index 9d0851a953916a9039331dd4139f79aeeb5fc3e3..674ed624079e2badb6d07569a69719d481d5ea89 100644 (file)
@@ -132,7 +132,7 @@ update_preview_cb (GtkFileChooser *file_chooser, gpointer data)
 
   gtk_image_set_from_pixbuf (GTK_IMAGE (preview), pixbuf);
   if (pixbuf)
-    gobject_unref (pixbuf);
+    g_object_unref (pixbuf);
 
   gtk_file_chooser_set_preview_widget_active (file_chooser, have_preview);
 }